home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-06-28 | 380 b | 26 lines | [TEXT/CWIE] |
- // TextModeMaintainer.h
-
- #ifndef TextModeMaintainer_h
- #define TextModeMaintainer_h
-
- #ifndef GrafPortObject_h
- #include "GrafPortObject.h"
- #endif
-
- class TextModeMaintainer
- {
- private:
- GrafPortObject& port;
- SourceMode old;
-
- public:
- TextModeMaintainer();
- TextModeMaintainer( SourceMode toUse );
-
- ~TextModeMaintainer() { Reset(); }
-
- void Reset() const;
- };
-
- #endif
-